首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏快乐阿超

    build-your-own-x

    如果答案是肯定的,那么 build-your-own-x 项目将是你的理想选择。 什么是 build-your-own-x? 示例:Build Your Own Operating System 编译器:深入了解编译器的原理和实现。 示例:Build Your Own Compiler 数据库:学习关系型数据库的设计和实现。 示例:Build Your Own Database 网络工具:从零构建网络协议和工具。 示例:Build Your Own Network Tools 游戏引擎:构建一个基础的 2D 或 3D 游戏引擎。 示例:Build Your Own Game 为什么选择 build-your-own-x? 全面提高技术能力 通过自己动手实现技术,你将深入理解其底层原理。

    76410编辑于 2025-04-21
  • 🔥 Build Your Own 热点雷达系统

    热点雷达系统是一个实时聚合 50+ 内容平台热榜的抓取引擎 + 数据管理 + 可视化展示系统。

    4500编辑于 2026-05-20
  • 来自专栏王亚昌的专栏

    How to build your own ubuntu image with docker?

    Build a ubuntu image and install sshd 1. Pull ubuntu docker pull ubuntu:14.04 2. Build image docker build -t ubuntu-sshd-admin . Create new Dockerfile If you need more software in your own system, you can create more Dockerfile and build update version of image. Build a new version docker build -t ubuntu-sshd-admin:0.1 . 

    56920发布于 2018-08-03
  • 来自专栏szhshp 的第四边境中转站

    Create Your Own Redux (Typescript)

    AppContext.Provider value={{ state, dispatch }}> {children} </AppContext.Provider> ); }; Wrap your

    36540编辑于 2022-09-21
  • 来自专栏张善友的专栏

    MindManager: Draw your own MindMap!

    可以在思路不受任何干扰的情况下进行节点的扩展操作; 2 而完成后的思路树整理,也可以通过节点的托拽进行; 3 新版的增加了 undo 和各种图标操作; 以下是SF对FreeMind开发人员采访的:部分摘录 Why do you think your Thus, you can enter your thoughts quickly and then concentrate on the map itself. Where do you see your project going? 我的目标是可用性,向Eclipse学习 What's on your project wish list? What is your development environment like?

    1.2K80发布于 2018-01-26
  • Build Your Own 内容发布引擎:30 分钟搞定多平台一键分发

    _build_headers(cred)#请求平台的「个人信息」端点resp=awaitctx.http.get(self.PROFILE_URL,headers=headers)ifresp.status_code #伪装浏览器UAdef_build_common_headers(self,xsrf_token:str)->dict:"""构造通用的CookieAPI请求头子类可以调用self. _build_common_headers()快速获得基础headers,再追加平台特有的Header。""" _build_common_headers(cred.get("xsrf_token",""))ifcred.get("cookie"):headers["Cookie"]=cred["cookie"] _build_auth_header(cred)status,body=awaitself.

    100编辑于 2026-05-21
  • 来自专栏前端萌媛的成长之路

    Setting up your own Ghost theme

    Creating a totally custom design for your publication Ghost comes with a beautiful default theme called However, Ghost can also be completely themed to suit your needs. premium pre-built themes which you can get from the Ghost Theme Marketplace, or you can simply create your own from scratch. ? The best way to learn how to write your own Ghost theme is to have a look at the source code for Casper

    49720发布于 2018-05-24
  • 来自专栏开源服务指南

    Build your own X:从零开始创造自己的技术项目 | 开源日报 No.56

    codecrafters-io/build-your-own-x[1] Stars: 206.6k License: NOASSERTION Build your own X 是一个集合了多个精心编写的 v4.0+ 支持多语言 (英文和简体中文) 提供 Live demo 演示 可以根据用户角色生成菜单并进行路由权限控制 兼容现代浏览器和 IE 10+ 相关链接 [1] codecrafters-io/build-your-own-x : https://github.com/codecrafters-io/build-your-own-x [2] massgravel/Microsoft-Activation-Scripts: https

    2.1K21编辑于 2023-10-23
  • 来自专栏佳爷的后花媛

    Write your own Excel in 100 lines of F#

    What is a spreadsheetThe sample compiles to JavaScript, so the best way of explaining what we want to build To confirm your edit, just click on any other cell. The nice thing about writing your HTML rendering in this way is that it is composable. I wrote that on my own, but there are similar existing libraries that you could use (though you'd need This makes it possible to integrate with libraries such as React and build different architectures on

    87320发布于 2020-04-24
  • 来自专栏osc同步分享-java技术分享站

    How Tomcat Works, A Guide to Developing Your Own Java Servlet Container

    2.1 连接器 在tomcat中,最主要的是连接器和容器,而连接器就是用来监听客户端的连接,并完成连接的。 HttpConnector  等待 HTTP 请求并建立连接 HttpProcessor 创

    80680发布于 2018-03-14
  • 来自专栏osc同步分享-java技术分享站

    How Tomcat Works, A Guide to Developing Your Own Java Servlet Container

    1.1 socket网络通信基础 客户端使用主机地址和端口实例化一个socket,此socket通过输出流将字符串等传向服务器主机。 服务器使用端口号实例化一个serverSocket,调用accept()方法监听此端口,等待客户端的连接。一旦连接成功,就可以获取到输入流,将客户端通过网络发送的字符串读取到;也可以获取输出流,将自己的反馈信息发给客户端(客户端获取输入流就可以读到反馈信息)。 ServerSocket serverSocket = new ServerSocket("8080",1,"客户机

    74760发布于 2018-03-14
  • 来自专栏ThoughtWorks

    TW Insight - Good Practices to Build Your AngularJS Application

    We want to share some practices that we have learned along the way that can help you start your AngularJS practices for AngularJS applications separated in five categories: #1 Structure: When we start to build Because you need to think first on what your project needs are.

    79570发布于 2018-04-20
  • 来自专栏Skemaloop

    gRPC rocks build your first gRPC service(part 2)

    Then you can check your prototol list to download your server boilerplate code. reply = PbServiceOuterClass.HelloReply.newBuilder().setMsg("Msg: Hello," + request.getMsg() + "\n").build (); SayHiOuterClass.HelloReply reply =SayHiOuterClass.HelloReply.newBuilder().build(); logic here responseObserver.onNext(reply); responseObserver.onCompleted(); } ​ } ​ Build your project by maven. mvn package Start your service. java -jar sample_package-0.0.1-SNAPSHOT.jar ​

    41120编辑于 2022-04-10
  • 来自专栏Skemaloop

    gRPC rocks build your first gRPC service(part 1)

    If you are a beginner, you must have been frustrated by the complexity of using protoc to build a gRPC In this series of articles, I will explain how I build gRPC services in a toolkit called Skemaloop, in Click the try now button to start your journey. You need login with your github account. After you login, you can start define your application interface. The group is your github`s user account.

    36230编辑于 2022-04-10
  • 来自专栏腾讯开源的专栏

    Open Source Talk 03|Don’t break your user,Build a community

    本期分享嘉宾:nihui(倪辉) 开源神经网络推理框架ncnn作者 腾讯犀牛鸟开源人才培养计ncnn开源项目导师 在开始,我想借用 Linus Torvalds 的两句话: Don’t break your If you want your project to flourish long term you shouldn’t let your users worry about upgrades and Build a community “In order to have a long life for a platform/project, you should create a community //什么是Don’t break your user 1. 项目的持续更新和维护 2. 不破坏API兼容性 ? ? ? //什么是Build a community 1. 直接与用户交流 2. 帮助社区衍生项目 ? ?

    1.4K20发布于 2021-07-15
  • 来自专栏MasiMaro 的技术博文

    Error: Your project contains C++ files but it is not using a supported native build system

    然后再在文件build.gradle(Module:app)里面的buildTypes类中添加一个这样的方法 sourceSets { main { jni.srcDirs =

    82740发布于 2019-02-25
  • 来自专栏韩曙亮的移动开发专栏

    【错误记录】jcenter 移除问题 ( Please remove usages of `jcenter()` Maven repository from your build scripts )

    文章目录 一、报错信息 二、解决方案 一、报错信息 ---- 报错信息 : Please remove usages of `jcenter()` Maven repository from your build scripts and migrate your build to other Maven repositories. 马上要停止维护并关闭 , 目前只能使用 repositories { google() mavenCentral() } 这两个 Maven 仓库 ; 将 build.gradle

    77520编辑于 2023-03-30
  • 来自专栏西里网CSDN博客

    YOURLS (Your Own URL Shortener) 是一个开源的PHP程序,允许用户创建和管理自定义短链接

    是一个开源的Java EE应用服务器 Cirros是一个轻量级的Linux发行版 Apache Tomcat 是一个开源的 Java Servlet 容器和 Web 服务器 详细简介 YOURLS (Your Own URL Shortener) 是一个开源的PHP程序,允许用户创建和管理自定义短链接。 yourdbuser \ -e YOURLS_DB_PASS=yourdbpass \ -e YOURLS_DB_NAME=yourdbname \ -e YOURLS_SITE=https://your-domain.com

    39410编辑于 2025-05-19
  • 来自专栏张善友的专栏

    Custom Build Numbers in Team Build

    The Team Build service in Team Foundation Server includes the current date in the build number by default Build labels have a tendency to show up in many places, and a friendly number is easier on the eyes. FooBar_2.5.1 FooBar_2.5.2 … FooBar_2.5.176 Fortunately, it's easier to change Team Build with a custom One of the properties in play during a team build is LastBuildNumber, which we can inspect during the 28/7203.aspx http://blogs.vertigosoftware.com/teamsystem/archive/2006/07/06/Adding_the_Build_Number_to_your_binaries.aspx

    99260发布于 2018-01-31
  • 来自专栏centosDai

    dotnet build

    本文适用于: ✔️ .NET Core 2.x SDK 及更高版本 “属性” dotnet build - 生成项目及其所有依赖项。 -h|--help 描述 dotnet build 命令将项目及其依赖项生成为一组二进制文件。 MSBuild dotnet build 使用 MSBuild 生成项目,因此它支持并行生成和增量生成。 有关详细信息,请参阅增量生成。 示例 生成项目及其依赖项: .NET CLI复制 dotnet build 使用“发布”配置生成项目及其依赖项: .NET CLI复制 dotnet build --configuration Release 选项的生成参数: .NET CLI复制 dotnet build -p:Version=1.2.3.4

    2.8K20编辑于 2022-01-05
领券